home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / bin / usb-creator-gtk < prev    next >
Text File  |  2009-10-22  |  3KB  |  75 lines

  1. #!/usr/bin/python
  2.  
  3. # Copyright (C) 2009 Canonical Ltd.
  4.  
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License version 3,
  7. # as published by the Free Software Foundation.
  8. #
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12. # GNU General Public License for more details.
  13. #
  14. # You should have received a copy of the GNU General Public License
  15. # along with this program.  If not, see <http://www.gnu.org/licenses/>.
  16.  
  17. import os, sys
  18. import optparse
  19. import traceback
  20. from dbus import DBusException
  21.  
  22. program = sys.argv[0]
  23. if program.startswith('./') or program.startswith('bin/'):
  24.     sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..'))
  25.     os.environ['USBCREATOR_LOCAL'] = '1'
  26. from usbcreator.frontends.gtk import GtkFrontend
  27. from usbcreator.backends.devicekit import DeviceKitBackend
  28. from usbcreator.misc import *
  29. import gettext
  30.  
  31. setup_logging()
  32. gettext.install('usbcreator', localedir='/usr/share/locale', unicode=True)
  33.  
  34. # TODO evand 2009-07-09: Rename to bin/usb-creator-gtk.in and substitue the
  35. # version in at build time.
  36. parser = optparse.OptionParser(usage=_('%prog [options]'), version='0.2.8')
  37. parser.set_defaults(safe=False,
  38.                     iso=None,
  39.                     persistent=True,
  40.                     trace=False)
  41. # FIXME evand 2009-07-28: Reconnect this option to the install routine.
  42. parser.add_option('-s', '--safe', dest='safe', action='store_true',
  43.                   help=_('choose safer options when constructing the USB '
  44.                          'disk (may slow down the boot process).'))
  45. parser.add_option('-i', '--iso', dest='img',
  46.                   help=_('provide a source image (CD or disk) to '
  47.                          'pre-populate the UI.'))
  48. parser.add_option('-n', '--not_persistent', dest='persistent',
  49.                   action='store_false',
  50.                   help=_('disable persistent setting by default in the UI'))
  51. (options, args) = parser.parse_args()
  52.  
  53. try:
  54.     backend = DeviceKitBackend()
  55.     frontend = GtkFrontend(backend, options.img, options.persistent)
  56. except DBusException, e:
  57.     # FIXME evand 2009-07-09: Wouldn't service activation pick this up
  58.     # automatically?
  59.     # FIXME evand 2009-07-28: Does this really belong this far out?
  60.     logging.exception('DBus exception:')
  61.     if e._dbus_error_name == 'org.freedesktop.DBus.Error.ServiceUnknown':
  62.         message = _('This program needs DeviceKit-disks running in order to'
  63.                     'properly function.')
  64.     else:
  65.         message = _('An error occurred while talking to the DeviceKit-disks '
  66.                     'service.')
  67.     GtkFrontend.startup_failure(message)
  68.     sys.exit(1)
  69. except (KeyboardInterrupt, Exception), e:
  70.     # TODO evand 2009-05-03: What should we do here to make sure devices are
  71.     # unmounted, etc?
  72.     logging.exception('Unhandled exception:')
  73.     message = _('An unhandled exception occurred:\n%s' % unicode(e))
  74.     GtkFrontend.startup_failure(message)
  75.